Enum SmtpResponseType

java.lang.Object
java.lang.Enum<SmtpResponseType>
com.cisco.pt.ipc.enums.SmtpResponseType
All Implemented Interfaces:
Serializable, Comparable<SmtpResponseType>, Constable

public enum SmtpResponseType extends Enum<SmtpResponseType>
An enum for the IPC's SmtpResponseType values
Author:
packettracerexapps@external.cisco.com
  • Enum Constant Details

    • SMTP_REQUEST

      public static final SmtpResponseType SMTP_REQUEST
    • SMTP_RESPONSE_SUCCESS

      public static final SmtpResponseType SMTP_RESPONSE_SUCCESS
    • SMTP_REQUEST_FORWARD

      public static final SmtpResponseType SMTP_REQUEST_FORWARD
    • SMTP_REMOTE_RECEIEVER_DOES_NOT_EXIST

      public static final SmtpResponseType SMTP_REMOTE_RECEIEVER_DOES_NOT_EXIST
    • SMTP_RESPONSE_ERROR

      public static final SmtpResponseType SMTP_RESPONSE_ERROR
    • SMTP_TIMEOUT

      public static final SmtpResponseType SMTP_TIMEOUT
    • SMTP_PEER_RESET

      public static final SmtpResponseType SMTP_PEER_RESET
    • SMTP_DNS_SERVER_NOT_FOUND

      public static final SmtpResponseType SMTP_DNS_SERVER_NOT_FOUND
    • SMTP_DNS_UN_RESOLVED_HOST_NAME

      public static final SmtpResponseType SMTP_DNS_UN_RESOLVED_HOST_NAME
    • SMTP_PROTOCOL_ERROR

      public static final SmtpResponseType SMTP_PROTOCOL_ERROR
    • SMTP_USER_NOT_FOUND

      public static final SmtpResponseType SMTP_USER_NOT_FOUND
    • SMTP_SERVER_DOMAIN_ERROR

      public static final SmtpResponseType SMTP_SERVER_DOMAIN_ERROR
    • SMTP_SERVER_NOT_FOUND

      public static final SmtpResponseType SMTP_SERVER_NOT_FOUND
  • Field Details

    • intValue

      protected int intValue
  • Method Details

    • values

      public static SmtpResponseType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static SmtpResponseType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getIntValue

      public int getIntValue()
    • fromIntValue

      public static SmtpResponseType fromIntValue(int value)
    • fromIntValue

      public static SmtpResponseType fromIntValue(Integer value)